home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / hlp_auth / txtcon / readme.txt < prev    next >
Encoding:
Text File  |  1995-01-17  |  2.2 KB  |  53 lines

  1. TEXTCONV UTILITY
  2.  
  3. You've just completed the world's greatest Visual Basic program and have
  4. given it to trusted friends for beta testing.  Your friends tell you the
  5. program has real merit, except they couldn't figure out how it works!
  6.  
  7. You need a help file!
  8.  
  9. But, writing a full-blown Windows Help File is no trivial task (I, for one
  10. have not yet mastered the art).  So, you look for other ways to put in 
  11. some on-line help without having to spend weeks learning how the Help
  12. Compiler works.
  13.  
  14. There are several ways to put "help" messages into a VB program: use Print
  15. to "print" lines of text unto a form or Picture control, use MsgBox, or
  16. use Text Box controls (there're probably others, but you get the idea).
  17.  
  18. Using any of the above schemes, though, is very tedious because you have
  19. to create the help data within the VB development platform using string
  20. variables and the like.  Very un-Windows.
  21.  
  22. One way to "fix" this is to use a standard text editor such as the DOS
  23. Edit or Windows NotePad to create the help file text, then read it into
  24. your program either a line at a time or in one gulp, then send it to the
  25. screen.  This method works fine, but requires that you have the help file
  26. available where your program can find it.
  27.  
  28. What if there were a way to use an editor to create the help text, then
  29. somehow "convert" the text into strings that VB can compile?  TextConv is
  30. just such a utility.
  31.  
  32. TextConv takes your ASCII text file as input, turns each line into a
  33. compilable text string, and puts the Sub header and End Sub trailer thus
  34. creating what is in effect a "help subroutine".
  35.  
  36. TextConv "saves" its "output" on the Windows ClipBoard, where it can be
  37. easily pasted into the General Declarations section of a Form or into a
  38. Module.
  39.  
  40. TextConv was used to create its own help subroutine.  The file TEXTCONV.HLP
  41. included in the TextConv archive is the "input" file for the help
  42. subroutine.
  43.  
  44. I hope you enjoy using this program and find it as useful as I have.  It is
  45. totally free, but it is NOT public domain (i.e., it is copyrighted by me.
  46. Oh, one more thing: I have absolutely no liability for anything you do
  47. with my program or any damage it might cause you should there be a bug.
  48.  
  49.  
  50.  
  51.                         Jerry Rivers
  52.                         January 16, 1995
  53.